home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVIELAPS.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  1KB  |  26 lines

  1. /*=======================================================*/
  2. /*  TVIELAPS.C                                           */
  3. /*                                                       */
  4. /*  (c) Copyright 1988 Ralf Brown  All Rights Reserved   */
  5. /*  May be freely copied for noncommercial use, so long  */
  6. /*  as this copyright notice remains intact, and any     */
  7. /*  changes are marked in the comment blocks preceding   */
  8. /*  functions.                                           */
  9. /*=======================================================*/
  10.  
  11. #include "tvapi.h"
  12.  
  13. /*======================================================*/
  14. /* TVtimer_elapsed  return 1/100ths seconds since timer */
  15. /*                 was started                          */
  16. /*   Ralf Brown 4/3/88                                  */
  17. /*   Ralf Brown 6/21/88 rewritten with TVsendmsg1       */
  18. /*======================================================*/
  19.  
  20. DWORD pascal TVtimer_elapsed(OBJECT timer)
  21. {
  22.    return (DWORD) TVsendmsg1(SIZE_MSG,TOS,timer) ;
  23. }
  24.  
  25. /* end of TVIELAPS.C */
  26.